home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol04 / 01b / sleuth / sleuth.rc < prev    next >
Text File  |  1988-10-04  |  1KB  |  36 lines

  1. /*-----------------------------------------------------------------*/
  2. /* Sleuth.rc - resource file for SLEUTH.EXE                        */
  3. /*-----------------------------------------------------------------*/
  4.  
  5. #include <os2.h>
  6. #include "Sleuth.h"
  7.  
  8. /*-----------------------------------------------------------------*/
  9.  
  10. POINTER ID_SLEUTH       sleuth.ico
  11.  
  12. /*-----------------------------------------------------------------*/
  13.  
  14. STRINGTABLE
  15. {
  16.     IDS_CLASS,      "Sleuth!"
  17.     IDS_TITLE,      "Presentation Manager Sleuth"
  18. }
  19.  
  20. /*-----------------------------------------------------------------*/
  21.  
  22. MENU ID_SLEUTH
  23. {
  24.     SUBMENU "~Sleuth",                          CMD_SLEUTH
  25.     {    
  26.         MENUITEM "~New case",                   CMD_LOOK
  27.         MENUITEM SEPARATOR
  28.         MENUITEM "~Show Detail",                CMD_EXPAND
  29.         MENUITEM SEPARATOR
  30.         MENUITEM "E~xit",                       CMD_EXIT
  31.         MENUITEM "A~bout Sleuth...",            CMD_ABOUT
  32.     }
  33. }
  34.  
  35. /*-----------------------------------------------------------------*/
  36.